072ae009a9885f922f3bec839bba12695addf238,features/topology-map/org.opennms.features.topology.app/src/main/java/org/opennms/features/topology/app/internal/TopologyWidgetTestApplication.java,TopologyWidgetTestApplication,updateWidgetView,#WidgetManager#,328
Before Change
bottomLayoutBar.setFirstComponent(m_treeMapSplitPanel);
// Split the screen 70% top, 30% bottom
bottomLayoutBar.setSplitPosition(70, Sizeable.UNITS_PERCENTAGE);
bottomLayoutBar.setSizeFull();
bottomLayoutBar.setSecondComponent(getTabSheet(widgetManager, this));
m_layout.addComponent(bottomLayoutBar, getBelowMenuPosition());
}
After Change
bottomLayoutBar.setFirstComponent(m_treeMapSplitPanel);
// Split the screen 70% top, 30% bottom
bottomLayoutBar.setSplitPosition(70, Sizeable.UNITS_PERCENTAGE);
bottomLayoutBar.setSizeFull();
// Use an absolute layout for the bottom panel
AbsoluteLayout bottomLayout = new AbsoluteLayout();